Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / IReadonlyArray<T> Interface / Item Property
An integer value indicates the index of the item.


In This Topic
    Item Property (IReadonlyArray<T>)
    In This Topic
    Gets the item at the specified index.
    Syntax
    'Declaration
     
    
    ReadOnly Default Property Item( _
       ByVal index As Integer _
    ) As T
    'Usage
     
    
    Dim instance As IReadonlyArray(Of T)
    Dim index As Integer
    Dim value As T
     
    value = instance.Item(index)
    T this[ 
       int index
    ]; {get;}

    Parameters

    index
    An integer value indicates the index of the item.

    Property Value

    The T item.
    See Also